module Base
{
    craftRecipe Belt2000
	{
		timedAction = SewingCloth,
		Time = 60,
		Tags = AnySurfaceCraft,
        category = Tailoring,

        inputs
        {
			item 1 [Base.Belt2],
        }
        outputs
        {
			item 1 Base.Belt2000,
        }
    }

	craftRecipe Belt0000
	{
		timedAction = SewingCloth,
		Time = 60,
		Tags = AnySurfaceCraft,
        category = Tailoring,

        inputs
        {
			item 1 [Base.Belt2000],
        }
        outputs
        {
			item 1 Base.Belt0000,
        }
    }
	
	craftRecipe Belt9999
	{
		timedAction = SewingCloth,
		Time = 60,
		Tags = AnySurfaceCraft,
        category = Tailoring,

        inputs
        {
			item 1 [Base.Belt0000],
        }
        outputs
        {
			item 1 Base.Belt9999,
        }
    }    
	
	craftRecipe Belt
	{
		timedAction = SewingCloth,
		Time = 60,
		Tags = AnySurfaceCraft,
        category = Tailoring,

        inputs
        {
			item 1 [Base.Belt9999],
        }
        outputs
        {
			item 1 Base.Belt2,
        }
    }
	
	
}
